home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 February
/
EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso
/
enigma
/
earcd
/
emula
/
msh-156.lha
/
syslog
/
log.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-10-24
|
325b
|
21 lines
/*-
* $Id: log.c,v 1.1 1994/10/24 20:36:30 Rhialto Exp $
*
* $Log: log.c,v $
* Revision 1.1 1994/10/24 20:36:30 Rhialto
* Initial revision
*
* LOG A MESSAGE
-*/
#include "syslog.h"
main(argc, argv)
int argc;
char **argv;
{
initsyslog();
syslog0("%s: %s\n", argv[0], argv[1]);
uninitsyslog();
}